home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00122_button routines.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  3.4 KB  |  121 lines

  1. -- BUTTON
  2.  
  3. -- This routine will "bounce" a sprite on stage.
  4. -- This bounce occurs because of a swapping of 1 cast member with another.
  5. -- 
  6. -- mouseDown over button = down state
  7. -- mouseDown outside button = up state
  8. -- mouse released over button returns TRUE
  9. -- mouse released outside of button returns FALSE
  10. --
  11. -- NOTE:
  12. -- When this handler is done, it unpuppets the sprite, there is no check for a previously
  13. -- puppeted sprite state.
  14. --
  15. -- naming convention...
  16. -- normal button = the name of cast member in whatSprite
  17. -- down button = same as above + ",down"
  18. --
  19. -- other states could be...    + ",gray"
  20. --                             + ",next"
  21. --                             + ",hot"
  22. -- you get the idea...
  23. --
  24. on bounceButton whatSprite
  25.   -- do something to figure out if we are in an irregularly shaped button.
  26.   -- set thisCast = the mouseCast
  27.   
  28.   -- do all the seeking up front
  29.   set normalName = item 1 of the name of the member of sprite whatSprite
  30.   set normalCast = the number of member normalName
  31.   set downName = normalName & ",down"
  32.   set downCast = the number of member downName
  33.   
  34.   -- debugging setup
  35.   if the controlDown then
  36.     put "normal name: " & normalName
  37.     put "cast member: " & normalCast
  38.     put ""
  39.     put "down name: " & downName
  40.     put "cast number: " & downCast
  41.   end if
  42.   -- end debug
  43.   
  44.   -- puppet the sprite
  45.   puppetSprite whatSprite, TRUE
  46.   
  47.   -- assume an immediate hit
  48.   set the castNum of sprite whatSprite = downCast
  49.   
  50.   updateStage
  51.   
  52.   wait (20)
  53.   
  54.   -- while the mouse is down, constantly check the button
  55.   repeat while the stillDown
  56.     if inside(point(the mouseH, the mouseV), the rect of sprite whatSprite) then
  57.       -- we are still over the button
  58.       -- using "inside" disallows the whole matte ink thing
  59.       -- is that a-ok?
  60.       
  61.       -- make sure it is down
  62.       set the castNum of sprite whatSprite = downCast
  63.       
  64.     else
  65.       -- we have left the button
  66.       
  67.       -- pop it back up
  68.       set the castNum of sprite whatSprite = normalCast
  69.     end if
  70.     
  71.     -- draw it in the proper state
  72.     updateStage
  73.   end repeat
  74.   
  75.   -- check to see if we are still inside the button
  76.   if inside(point(the mouseH, the mouseV), the rect of sprite whatSprite) then
  77.     -- we are still over the button
  78.     -- return it to normal and return true
  79.     set the castNum of sprite whatSprite = normalCast
  80.     puppetSprite whatSprite, FALSE
  81.     updateStage
  82.     
  83.     -- return the positive reaction
  84.     return TRUE
  85.     
  86.   else
  87.     -- we are outside the button
  88.     -- return it to normal and return FALSE
  89.     set the castNum of sprite whatSprite = normalCast
  90.     puppetSprite whatSprite, FALSE
  91.     updateStage
  92.     
  93.     return FALSE
  94.   end if
  95.   
  96.   -- just in case
  97.   return FALSE
  98. end
  99.  
  100. --------------------------------------------------------------------------
  101. -- this will blink a button to the hilited state in an exit frame
  102. -- very similar to a toggle button
  103.  
  104. on blinkButton whatSprite
  105.   puppetSprite whatSprite, TRUE
  106.   
  107.   set currentName = the name of member (the member of sprite whatSprite)
  108.   set rootName = item 1 of currentName
  109.   
  110.   -- now we want to see what state it is in currently, and flip it
  111.   -- from normal to hilited (the hilite always implies at least a working button).
  112.   if item 2 of currentName = "hot" then
  113.     -- we are hot already, make it normal
  114.     set the member of sprite whatSprite = the number of member rootName
  115.   else
  116.     set the member of sprite whatSprite = the number of member (rootName & ",hot")
  117.   end if
  118.   
  119.   updateStage
  120. end
  121.